-
The µ-termination of Ex24_GM04 cannot be proved by using
Lucas' transformation. The TRS Ex24_GM04_L:
f -> f
g(b) -> c
b -> c
is not terminating.
-
The µ-termination of Ex24_GM04 cannot be proved by using
Zantema's transformation. The TRS Ex24_GM04_Z:
f(X,n__g(X),Y) -> f(activate(Y),activate(Y),activate(Y))
g(b) -> c
b -> c
g(X) -> n__g(X)
activate(n__g(X)) -> g(X)
activate(X) -> X
is not terminating:
f(c,n__g(c),n__g(b))
-> f(activate(n__g(b)),activate(n__g(b)),activate(n__g(b)))
-> f(g(b),activate(n__g(b)),activate(n__g(b)))
-> f(c,activate(n__g(b)),activate(n__g(b)))
-> f(c,g(b),activate(n__g(b)))
-> f(c,g(c),activate(n__g(b)))
-> f(c,n__g(c),activate(n__g(b)))
-> f(c,n__g(c),n__g(b))
-> ...
-
The µ-termination of Ex24_GM04 cannot be proved by using
Ferreira and Ribeiro's transformation. The TRS Ex24_GM04_FR:
f(X,n__g(X),Y) -> f(activate(Y),activate(Y),activate(Y))
g(b) -> c
b -> c
g(X) -> n__g(X)
activate(n__g(X)) -> g(activate(X))
activate(X) -> X
is not terminating:
f(c,n__g(c),n__g(b))
-> f(activate(n__g(b)),activate(n__g(b)),activate(n__g(b)))
-> f(g(b),activate(n__g(b)),activate(n__g(b)))
-> f(c,activate(n__g(b)),activate(n__g(b)))
-> f(c,g(b),activate(n__g(b)))
-> f(c,g(c),activate(n__g(b)))
-> f(c,n__g(c),activate(n__g(b)))
-> f(c,n__g(c),n__g(b))
-> ...
-
The µ-termination of Ex24_GM04 cannot be proved by using
Giesl and Middeldorp's transformation. The TRS Ex24_GM04_GM:
a__f(X,g(X),Y) -> a__f(Y,Y,Y)
a__g(b) -> c
a__b -> c
mark(f(X1,X2,X3)) -> a__f(X1,X2,X3)
mark(g(X)) -> a__g(mark(X))
mark(b) -> a__b
mark(c) -> c
a__f(X1,X2,X3) -> f(X1,X2,X3)
a__g(X) -> g(X)
a__b -> b
is not terminating:
a__f(c,g(c),a__g(a__b)) -> a__f(a__g(a__b),a__g(a__b),a__g(a__b))
-> a__f(a__c,a__g(a__b),a__g(a__b))
-> a__f(c,a__g(a__b),a__g(a__b))
-> a__f(c,g(a__b),a__g(a__b))
-> a__f(c,g(a__c),a__g(a__b))
-> a__f(c,g(c),a__g(a__b))
-> ...
- No proof is possible by using CSRPO.